home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / ddj0897.zip / RCSC.ZIP / LIB51 / ISASCII.C < prev    next >
Text File  |  1997-01-12  |  115b  |  8 lines

  1. /*
  2. ** return 'true' if c is an ASCII character (0-127)
  3. */
  4. isascii(c) unsigned c; {
  5.   return (c < 128);
  6.   }
  7.  
  8.